c49288a4746571d80d48e5c44c5200b1cca9b5ad,java/code/src/com/redhat/rhn/frontend/taglibs/ListDisplayTag.java,ListDisplayTag,renderSetButtons,#JspWriter#,665
Before Change
private void renderSetButtons(JspWriter out) throws IOException {
StringBuffer buf = new StringBuffer();
addButtonTo(buf, RequestContext.DISPATCH, UPDATE_LIST_KEY);
buf.append(" ");
addButtonTo(buf, RequestContext.DISPATCH, SELECT_ALL_KEY);
After Change
private void renderSetButtons(JspWriter out) throws IOException {
StringBuffer buf = new StringBuffer();
buf.append(addButtonTo(buf, RequestContext.DISPATCH, UPDATE_LIST_KEY,
"update_list_key_id"));
buf.append(" ");
buf.append(addButtonTo(buf, RequestContext.DISPATCH, SELECT_ALL_KEY));